This forum is closed to new posts and
responses. Individual names altered for privacy purposes. The information contained in this website is provided for informational purposes only and should not be construed as a forum for customer support requests. Any customer support requests should be directed to the official HCL customer support channels below:
RE: Compose a new document and passing a value to it. ~Maria Prerevernivu 28.Jan.04 08:51 AM a Web browser Domino Designer All ReleasesAll Platforms
try this,it is not tested butI think it will work
Dim session As NotesSession
Set session = New NotesSession
Dim db As NotesDatabase
Set db = Session.CurrentDatabase
Dim NewDOc As notesdocument
Set NewDOc =db.createdocument
NewDOc.form="Your Form Name"
NewDOc.Choices="1" 'or whatever the value
Call NewDOc.Save(True,False)